Micron Document
🎖️GitЯра🎖️

Commit 212eea9d3086f1f774a2a6115da93d0f4608a858


Parents : cef12c3
Author : James Rich <2199651+jamesarich@users.noreply.github.com>
Signature : Signature validation error
Date : 2026-06-16T21:08:05-05:00
Committer : GitHub <noreply@github.com>
Date : 2026-06-17T02:08:05Z

feat(node): show our node shortname chip on the Nodes tab (#5820)

Co-authored-by: Claude Opus 4.8 <noreply@anthropic.com>

Changes

1 files changed, 2 insertions(+), 2 deletions(-)


Diff

diff --git a/feature/node/src/commonMain/kotlin/org/meshtastic/feature/node/list/NodeListScreen.kt b/feature/node/src/commonMain/kotlin/org/meshtastic/feature/node/list/NodeListScreen.kt
index cdfa224713..e991ee36c9 100644
--- a/feature/node/src/commonMain/kotlin/org/meshtastic/feature/node/list/NodeListScreen.kt
+++ b/feature/node/src/commonMain/kotlin/org/meshtastic/feature/node/list/NodeListScreen.kt
@@ -150,7 +150,7 @@ fun NodeListScreen(
title = stringResource(Res.string.nodes),
subtitle = stringResource(Res.string.node_count_template, onlineNodeCount, nodes.size, totalNodeCount),
ourNode = ourNode,
- showNodeChip = false,
+ showNodeChip = ourNode != null && connectionState is ConnectionState.Connected,
canNavigateUp = false,
onNavigateUp = {},
actions = {
@@ -161,7 +161,7 @@ fun NodeListScreen(
)
}
},
- onClickChip = {},
+ onClickChip = { navigateToNodeDetails(it.num) },
)
},
floatingActionButton = {

Served by rngit 1.5.0 - Generated in 0.05s